ScanDocument DataType
Determines if the ScanDocument is modifiable after it has been created. This property indicates whether certain properties and methods of the ScanDocument are restricted or accessible. If the ScanDocument is restricted, any attempts to modify its properties or invoke its methods will result in exceptions being generated.
public ScanDocumentDataType DataType {get} |
Return value
ScanDocumentDataType | Type of the ScanDocument |
Example
Copy
scanDocument = scanDeviceManager.CreateScanDocument(GetselectedDeviceUniqueName(), DistanceUnit.Millimeters, false);
ScanDocumentDataType dataType = scanDocument.DataType;